home *** CD-ROM | disk | FTP | other *** search
/ MacTech 1 to 12 / MacTech-vol-1-12.toast / Source / MacTech® Magazine / Volume 09 - 1993 / 09.02 Feb 93 / Screen I⁄O Classes / Dumps.c < prev    next >
Encoding:
C/C++ Source or Header  |  1992-06-29  |  463 b   |  27 lines  |  [TEXT/KAHL]

  1. /******************************************************************************
  2.  
  3.   Dumps.c
  4.  
  5.      A starter main file for writing programs with the
  6.      THINK Class Library
  7.  
  8.   Copyright © 1990 Symantec Corporation.  All rights reserved.
  9.   
  10. ******************************************************************************/
  11.  
  12.  
  13. #include "duApp.h"
  14.  
  15.  
  16. void main()
  17.  
  18. {
  19.     duApp    *dumpsApp;                    
  20.  
  21.     dumpsApp = new duApp;
  22.     
  23.     dumpsApp->IduApp();
  24.     dumpsApp->Run();
  25.     dumpsApp->Exit();
  26. }
  27.